home *** CD-ROM | disk | FTP | other *** search
/ AGA Toolkit '97 / The AGA Toolkit '97.iso / miscellaneous / science / maths / calc / readme < prev   
Encoding:
Text File  |  1996-09-07  |  1.8 KB  |  66 lines

  1. # Copyright (c) 1994 David I. Bell
  2. # Permission is granted to use, distribute, or modify this source,
  3. # provided that this copyright notice remains intact.
  4. #
  5. # Arbitrary precision calculator.
  6.  
  7. I am allowing this calculator to be freely distributed for personal uses.
  8. Like all multi-precision programs, you should not depend absolutely on
  9. its results, since bugs in such programs can be insidious and only rarely 
  10. show up.
  11.   
  12. -dbell-
  13.  
  14. p.s. By Landon Curt Noll
  15.  
  16. Building calc in 3 easy steps:
  17.  
  18.     1) Look at the makefile, and adjust it to suit your needs.
  19.  
  20.        Here are some Makefile hints:
  21.  
  22.        In the past, some people have had to adjust the VARARG or
  23.        TERMCONTROL because the Makefile cannot always guess
  24.        correctly for certain systems.  You may need to play with
  25.        these values if you experience problems.
  26.  
  27.        The default compiler used is 'cc'.  The default compiler flag 
  28.        is '-O'.  If you have gcc, or gcc v2 (or better) you should use
  29.        that instead.   Some compilers allow for optimization beyond
  30.        just -O (gcc v2 has -O2, mips cc has -O3).  You should select
  31.        the best flag for speed optimization.  Calc can be cpu intensive
  32.        so selecting a quality compiler and good optimization level can
  33.        really pay off.
  34.  
  35.     2) build calc:
  36.  
  37.     make all
  38.  
  39.     3) test calc:
  40.  
  41.     make check
  42.  
  43. For further reading:
  44.  
  45.     LIBRARY
  46.         explains how programs can use libcalc.a to take advantage 
  47.     of the calc multi-precision routines.  
  48.  
  49.     help/todo
  50.     current wish list for calc
  51.  
  52.     CHANGES
  53.     recent changes to calc
  54.  
  55.     BUGS 
  56.     known bugs and mis-features
  57.     
  58.     help/full
  59.     full set of calc documentation
  60.  
  61. If you find bugs (better yet if you have bug fixes); or if you have
  62. suggested changes (better yet if you have patches), send them to:
  63.  
  64.     dbell@canb.auug.org.au
  65.     chongo@toad.com            {uunet,pyramid,sun}!hoptoad!chongo
  66.